Remove update_idle here. Might fix #383003.
authorMatthias Clasen <mclasen@redhat.com>
Mon, 10 Sep 2007 03:16:13 +0000 (03:16 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Mon, 10 Sep 2007 03:16:13 +0000 (03:16 +0000)
2007-09-09  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Remove
        update_idle here. Might fix #383003.

svn path=/trunk/; revision=18776

ChangeLog
gtk/gtkdnd.c

index 2fdfdac2deaae43496ea36d91498b0c525fa949f..aea1015057819305aba7208866736b87832aa5ad 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-09  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkdnd.c (gtk_drag_source_info_destroy): Remove
+       update_idle here. Might fix #383003.
+
 2007-09-09  Matthias Clasen  <mclasen@redhat.com>
 
        * gtk/gtkiconview.c (gtk_icon_view_item_hit_test): Add a 
index 31d1d9233edce8cbf9b38571270abdbfb9d26b91..856c49197b62f6c4a56b8bfd2865e2306b7d04d7 100644 (file)
@@ -3803,6 +3803,9 @@ gtk_drag_source_info_destroy (GtkDragSourceInfo *info)
   if (info->drop_timeout)
     g_source_remove (info->drop_timeout);
 
+  if (info->update_idle)
+    g_source_remove (info->update_idle);
+
   g_free (info);
 }
 
@@ -3857,7 +3860,7 @@ gtk_drag_update_idle (gpointer data)
 static void
 gtk_drag_add_update_idle (GtkDragSourceInfo *info)
 {
-  /* We use an idle lowerthan GDK_PRIORITY_REDRAW so that exposes
+  /* We use an idle lower than GDK_PRIORITY_REDRAW so that exposes
    * from the last move can catch up before we move again.
    */
   if (!info->update_idle)